home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / NEW_TECH / MKECR5.ZIP / OEMSETUP.INF < prev    next >
INI File  |  1993-07-24  |  19KB  |  578 lines

  1. ;-----------------------------------------------------------------------
  2. ; OPTION TYPE
  3. ; -----------
  4. ; This identifies the Option type we are dealing with.  The different
  5. ; possible types are:
  6. ;
  7. ; COMPUTER, VIDEO, POINTER, KEYBOARD, LAYOUT, SCSI, TAPE, PRINTER, ...
  8. ;-----------------------------------------------------------------------
  9.  
  10. [Identification]
  11.     OptionType = SCSI
  12.  
  13. ;-----------------------------------------------------------------------
  14. ; LANGUAGES SUPPORTED
  15. ; -------------------
  16. ;
  17. ; The languages supported by the INF, For every language supported
  18. ; we need to have a separate text section for every displayable text
  19. ; section.
  20. ;
  21. ;-----------------------------------------------------------------------
  22.  
  23. [LanguagesSupported]
  24.     ENG
  25.  
  26.  
  27. ;-----------------------------------------------------------------------
  28. ; OPTION LIST
  29. ; -----------
  30. ; This section lists the Option key names.  These keys are locale
  31. ; independent and used to represent the option in a locale independent
  32. ; manner.
  33. ;
  34. ;-----------------------------------------------------------------------
  35.  
  36. [Options]
  37.     "OEMSCSI"    = mkecr5xx
  38.  
  39. ;-----------------------------------------------------------------------
  40. ; OPTION TEXT SECTION
  41. ; -------------------
  42. ; These are text strings used to identify the option to the user.  There
  43. ; are separate sections for each language supported.  The format of the
  44. ; section name is "OptionsText" concatenated with the Language represented
  45. ; by the section.
  46. ;
  47. ;-----------------------------------------------------------------------
  48.  
  49. [OptionsTextENG]
  50.     "OEMSCSI"    = "Matsushita-Kotobuki Cr-52x/56x"
  51.  
  52. ;-----------------------------------------------------------------------------------------
  53. ; SCSI MINIPORT DRIVERS:
  54. ;
  55. ; Order of the information:
  56. ;
  57. ; Class driver = Type, Group, ErrorControl, Tag, EventMessageFile, TypesSupported
  58. ;
  59. ;-----------------------------------------------------------------------------------------
  60.  
  61. [MiniportDrivers]
  62.     mkecr5xx  = !SERVICE_KERNEL_DRIVER, "SCSI Miniport", !SERVICE_ERROR_NORMAL, %SystemRoot%\System32\IoLogMsg.dll , 7
  63.  
  64. ;---------------------------------------------------------------------------2
  65. ;
  66. ; DESCRIPTION:   To verify that this INF deals with the same type of options
  67. ;                as we are choosing currently.
  68. ;
  69. ; INPUT:         None
  70. ;
  71. ; OUTPUT:        $($R0): STATUS: STATUS_SUCCESSFUL
  72. ;                $($R1): Option Type (COMPUTER ...)
  73. ;                $($R2): Diskette description
  74. ;---------------------------------------------------------------------------
  75.  
  76. [Identify]
  77.     ;
  78.     ;
  79.     read-syms Identification
  80.  
  81.     set Status     = STATUS_SUCCESSFUL
  82.     set Identifier = $(OptionType)
  83.     set Media      = #("Source Media Descriptions", 1, 1)
  84.  
  85.     Return $(Status) $(Identifier) $(Media)
  86.  
  87.  
  88.  
  89. ;------------------------------------------------------------------------
  90. ; 2. ReturnOptions:
  91. ;
  92. ; DESCRIPTION:   To return the option list supported by this INF and the
  93. ;                localised text list representing the options.
  94. ;
  95. ;
  96. ; INPUT:         $($0):  Language used. ( ENG | FRN | ... )
  97. ;
  98. ; OUTPUT:        $($R0): STATUS: STATUS_SUCCESSFUL |
  99. ;                                STATUS_NOLANGUAGE
  100. ;                                STATUS_FAILED
  101. ;
  102. ;                $($R1): Option List
  103. ;                $($R2): Option Text List
  104. ;------------------------------------------------------------------------
  105.  
  106. [ReturnOptions]
  107.     ;
  108.     ;
  109.     set Status        = STATUS_FAILED
  110.     set OptionList     = {}
  111.     set OptionTextList = {}
  112.  
  113.     ;
  114.     ; Check if the language requested is supported
  115.     ;
  116.     set LanguageList = ^(LanguagesSupported, 1)
  117.     Ifcontains(i) $($0) in $(LanguageList)
  118.         goto returnoptions
  119.     else
  120.         set Status = STATUS_NOLANGUAGE
  121.         goto finish_ReturnOptions
  122.     endif
  123.  
  124.     ;
  125.     ; form a list of all the options and another of the text representing
  126.     ;
  127.  
  128. returnoptions = +
  129.     set OptionList     = ^(Options, 0)
  130.     set OptionTextList = ^(OptionsText$($0), 1)
  131.     set Status         = STATUS_SUCCESSFUL
  132.  
  133. finish_ReturnOptions = +
  134.     Return $(Status) $(OptionList) $(OptionTextList)
  135.  
  136.  
  137. ;
  138. ; 3. InstallOption:
  139. ;
  140. ; FUNCTION:  To copy files representing Options
  141. ;            To configure the installed option
  142. ;            To update the registry for the installed option
  143. ;
  144. ; INPUT:     $($0):  Language to use
  145. ;            $($1):  OptionID to install
  146. ;            $($2):  SourceDirectory
  147. ;            $($3):  AddCopy  (YES | NO)
  148. ;            $($4):  DoCopy   (YES | NO)
  149. ;            $($5):  DoConfig (YES | NO)
  150. ;
  151. ; OUTPUT:    $($R0): STATUS: STATUS_SUCCESSFUL |
  152. ;                            STATUS_NOLANGUAGE |
  153. ;                            STATUS_USERCANCEL |
  154. ;                            STATUS_FAILED
  155. ;
  156.  
  157. [InstallOption]
  158.  
  159.     ;
  160.     ; Set default values for
  161.     ;
  162.     set Status = STATUS_FAILED
  163.     set DrivesToFree = {}
  164.  
  165.     ;
  166.     ; extract parameters
  167.     ;
  168.     set Option   = $($1)
  169.     set SrcDir   = $($2)
  170.     set AddCopy  = $($3)
  171.     set DoCopy   = $($4)
  172.     set DoConfig = $($5)
  173.  
  174.     ;
  175.     ; Check if the language requested is supported
  176.     ;
  177.     set LanguageList = ^(LanguagesSupported, 1)
  178.     Ifcontains(i) $($0) in $(LanguageList)
  179.     else
  180.         set Status = STATUS_NOLANGUAGE
  181.         goto finish_InstallOption
  182.     endif
  183.     read-syms Strings$($0)
  184.  
  185.     ;
  186.     ; check to see if Option is supported.
  187.     ;
  188.  
  189.     set OptionList = ^(Options, 0)
  190.     ifcontains $(Option) in $(OptionList)
  191.     else
  192.         Debug-Output "SCSI.INF: SCSI option is not supported."
  193.         goto finish_InstallOption
  194.     endif
  195.     set OptionList = ""
  196.  
  197.     ;
  198.     ; Option has been defined already
  199.     ;
  200.  
  201.     set MiniportDriver   =   #(Options,         $(Option),         1)
  202.     set Type             = $(#(MiniportDrivers, $(MiniportDriver), 1))
  203.     set Group            =   #(MiniportDrivers, $(MiniportDriver), 2)
  204.     set ErrorControl     = $(#(MiniportDrivers, $(MiniportDriver), 3))
  205. ;
  206. ;***********************************************************************;
  207. ;  93/07/08                                ;
  208. ;  The Tag value is invalid for mke card.                ;
  209. ;   set Tag              =   #(MiniportDrivers, $(MiniportDriver), 4)    ;
  210. ;***********************************************************************;
  211. ;
  212.     set EventMessageFile =   #(MiniportDrivers, $(MiniportDriver), 4)
  213.     set TypesSupported   =   #(MiniportDrivers, $(MiniportDriver), 5)
  214.  
  215.     set Start            =   $(!SERVICE_BOOT_START)
  216.  
  217. installtheoption = +
  218.  
  219.     ;
  220.     ; Code to add files to copy list
  221.     ;
  222.  
  223.     ifstr(i) $(AddCopy) == "YES"
  224.         set DoActualCopy = NO
  225.         set FileToCheck = #(Files-ScsiMiniportDrivers, $(MiniportDriver), 2)
  226.         LibraryProcedure STATUS,$(!LIBHANDLE),CheckFileExistance $(!STF_WINDOWSSYSPATH)"\drivers\"$(FileToCheck)
  227.         ifstr(i) $(STATUS) == NO
  228.             set DoActualCopy = YES
  229.         endif
  230.  
  231.         ifstr(i) $(DoActualCopy) == NO
  232.             shell "subroutn.inf" DriversExist $($0) $(String1)
  233.             ifint $($ShellCode) != $(!SHELL_CODE_OK)
  234.                 Debug-Output "SCSI.INF: shelling DriversExist failed"
  235.                 goto finish_InstallOption
  236.             endif
  237.  
  238.             ifstr(i) $($R0) == STATUS_CURRENT
  239.             else-ifstr(i) $($R0) == STATUS_NEW
  240.                 set DoActualCopy = YES
  241.             else-ifstr(i) $($R0) == STATUS_USERCANCEL
  242.                 Debug-Output "SCSI.INF: User cancelled SCSI installation"
  243.                 goto finish_InstallOption
  244.             else
  245.                 Debug-Output "SCSI.INF: Error reported in DriversExist routine in SUBROUTN.INF"
  246.                 goto finish_InstallOption
  247.             endif
  248.         endif
  249.  
  250.         ifstr(i) $(DoActualCopy) == YES
  251.  
  252.             shell "subroutn.inf" DoAskSourceEx $(SrcDir) $(String2)
  253.             ifint $($ShellCode) != $(!SHELL_CODE_OK)
  254.                 Debug-Output "SCSI.INF: shelling DoAskSourceEx failed"
  255.                 goto finish_InstallOption
  256.             endif
  257.  
  258.             ifstr(i) $($R0) == STATUS_SUCCESSFUL
  259.                 set SrcDir = $($R1)
  260.                 ifstr(